home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / syslinux / com32 / include / sys / times.h < prev    next >
C/C++ Source or Header  |  2005-10-29  |  269b  |  22 lines

  1. /*
  2.  * sys/times.h
  3.  */
  4.  
  5. #ifndef _SYS_TIMES_H
  6. #define _SYS_TIMES_H
  7.  
  8. #include <stdint.h>
  9.  
  10. struct tms {
  11.   /* Empty */
  12. };
  13.  
  14. #define HZ          18    /* Piddly resolution... */
  15. #define CLK_TCK        HZ
  16.  
  17. typedef uint16_t clock_t;
  18.  
  19. clock_t times(struct tms *);
  20.  
  21. #endif /* _SYS_TIMES_H */
  22.